From 06a4ef1a4dfb844e83eda2cc439d6c5e340c7acb Mon Sep 17 00:00:00 2001 From: Uma Sharma Date: Tue, 21 Oct 2014 03:12:11 +0530 Subject: [PATCH] tools/xl: Call init function for libxl_domain_sched_params This patch calls init function for libxl_domain_sched_params before passing it as reference to sched_domain_get() function in tools/libxl/xl_cmdimpl.c IDL generated libxl types should be used only after calling the init function even if the variable is simply being passed by reference as an output parameter to a libxl function Signed-off-by: Uma Sharma Acked-by: Wei Liu -- --- tools/libxl/xl_cmdimpl.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index ed0d478f81..fb7573e39c 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -5387,6 +5387,8 @@ static int sched_credit_domain_output(int domid) printf("%-33s %4s %6s %4s\n", "Name", "ID", "Weight", "Cap"); return 0; } + + libxl_domain_sched_params_init(&scinfo); rc = sched_domain_get(LIBXL_SCHEDULER_CREDIT, domid, &scinfo); if (rc) return rc; @@ -5433,6 +5435,8 @@ static int sched_credit2_domain_output( printf("%-33s %4s %6s\n", "Name", "ID", "Weight"); return 0; } + + libxl_domain_sched_params_init(&scinfo); rc = sched_domain_get(LIBXL_SCHEDULER_CREDIT2, domid, &scinfo); if (rc) return rc; @@ -5458,6 +5462,8 @@ static int sched_sedf_domain_output( "Slice", "Latency", "Extra", "Weight"); return 0; } + + libxl_domain_sched_params_init(&scinfo); rc = sched_domain_get(LIBXL_SCHEDULER_SEDF, domid, &scinfo); if (rc) return rc; -- 2.30.2